home *** CD-ROM | disk | FTP | other *** search
/ World of Video / World of Video.iso / gfxprograms / boards / retina / rblanker.lha / RBlankers / makefile < prev    next >
Makefile  |  1995-02-13  |  926b  |  33 lines

  1. CFLG = ABSFUNCPOINTER OPTIMIZE NOSTKCHK UNSCHAR STRMERGE NOLINK OPTIMIZE OPTGLOBAL ANSI
  2. STL = LIB:sc.lib LIB:amiga.lib
  3. BLO = SC SD ND NOICONS
  4. #BLO = SC SD ADDSYM NOICONS
  5. TNM = 
  6.  
  7. all:    RCurves RSpliner RShapes
  8.  
  9. clean:
  10.      delete rspliner rcurves rshapes rspliner.o rcurves.o rshapes.o
  11.  
  12. RCurves: RCurves.o Main.o
  13.      sc:c/slink FROM LIB:c.o Main.o RCurves.o $(TNM) LIB LIB:scm881.lib $(STL) $(BLO) TO RCurves MAP RCurves.map
  14.  
  15. RSpliner: RSpliner.o Main.o
  16.      sc:c/slink FROM LIB:c.o Main.o RSpliner.o $(TNM) LIB $(STL) $(BLO) TO RSpliner MAP RSpliner.map
  17.  
  18. RShapes: RShapes.o Main.o
  19.      sc:c/slink FROM LIB:c.o Main.o RShapes.o $(TNM) LIB LIB:scm881.lib $(STL) $(BLO) TO RShapes MAP RShapes.map
  20.  
  21. RSpliner.o: RSpliner.c
  22.       sc:c/sc $(CFLG) RSpliner.c
  23.  
  24. RShapes.o: RShapes.c
  25.       SC:c/sc $(CFLG) CPU=68030 MATH=68881 RShapes.c
  26.  
  27. RCurves.o: RCurves.c
  28.       SC:c/sc $(CFLG) CPU=68030 MATH=68881 RCurves.c
  29.  
  30. Main.o: Main.c
  31.       SC:c/sc $(CFLG) Main.c
  32.  
  33.